Function Reference

_PathFull

Creates a path based on the relative path you provide. The newly created absolute path is returned

#include <File.au3>
_PathFull($szRelPath)

 

Parameters

$szRelPath The relative path to be created

 

Return Value

Returns the newly created absolute path.

 

Remarks

None.

 

Related

_PathMake, _PathSplit, DirCreate, FileChangeDir

 

Example


#include <file.au3>
$TestPath = _PathFull(@ScriptDir & "..\..\test")
MsgBox(0,"demo _PathFull",@ScriptDir & @lf & $TestPath)